home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs_src_gs.lha / gs5.03 / cc-head.mak < prev    next >
Text File  |  1997-08-05  |  10KB  |  287 lines

  1. #    Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # makefile for Unix/cc/X11 configuration.
  16.  
  17. #****************************************************************#
  18. #   If you want to change options, DO NOT edit unix-cc.mak       #
  19. #   or makefile.  Edit cc-head.mak and run the tar_cat script.   #
  20. #****************************************************************#
  21.  
  22. # ------------------------------- Options ------------------------------- #
  23.  
  24. ####### The following are the only parts of the file you should need to edit.
  25.  
  26. # ------ Generic options ------ #
  27.  
  28. # Define the installation commands and target directories for
  29. # executables and files.  The commands are only relevant to `make install';
  30. # the directories also define the default search path for the
  31. # initialization files (gs_*.ps) and the fonts.
  32.  
  33. INSTALL = install -c
  34. INSTALL_PROGRAM = $(INSTALL) -m 755
  35. INSTALL_DATA = $(INSTALL) -m 644
  36.  
  37. prefix = /usr/local
  38. exec_prefix = $(prefix)
  39. bindir = $(exec_prefix)/bin
  40. scriptdir = $(bindir)
  41. mandir = $(prefix)/man
  42. man1ext = 1
  43. man1dir = $(mandir)/man$(man1ext)
  44. datadir = $(prefix)/share
  45. gsdir = $(datadir)/ghostscript
  46. gsdatadir = $(gsdir)/$(GS_DOT_VERSION)
  47.  
  48. docdir=$(gsdatadir)/doc
  49. exdir=$(gsdatadir)/examples
  50. GS_DOCDIR=$(docdir)
  51.  
  52. # Define the default directory/ies for the runtime
  53. # initialization and font files.  Separate multiple directories with a :.
  54.  
  55. GS_LIB_DEFAULT=$(gsdatadir):$(gsdir)/fonts
  56.  
  57. # Define whether or not searching for initialization files should always
  58. # look in the current directory first.  This leads to well-known security
  59. # and confusion problems, but users insist on it.
  60. # NOTE: this also affects searching for files named on the command line:
  61. # see the "File searching" section of use.txt for full details.
  62. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  63.  
  64. SEARCH_HERE_FIRST=1
  65.  
  66. # Define the name of the interpreter initialization file.
  67. # (There is no reason to change this.)
  68.  
  69. GS_INIT=gs_init.ps
  70.  
  71. # Choose generic configuration options.
  72.  
  73. # -DDEBUG
  74. #    includes debugging features (-Z switch) in the code.
  75. #      Code runs substantially slower even if no debugging switches
  76. #      are set.
  77. # -DNOPRIVATE
  78. #    makes private (static) procedures and variables public,
  79. #      so they are visible to the debugger and profiler.
  80. #      No execution time or space penalty.
  81.  
  82. #GENOPT=-DDEBUG
  83. GENOPT=
  84.  
  85. # Define the name of the executable file.
  86.  
  87. GS=gs
  88.  
  89. # Define the directory where the IJG JPEG library sources are stored,
  90. # and the major version of the library that is stored there.
  91. # You may need to change this if the IJG library version changes.
  92. # See jpeg.mak for more information.
  93.  
  94. JSRCDIR=jpeg-6a
  95. JVERSION=6
  96.  
  97. # Define the directory where the PNG library sources are stored,
  98. # and the version of the library that is stored there.
  99. # You may need to change this if the libpng version changes.
  100. # See libpng.mak for more information.
  101.  
  102. PSRCDIR=libpng
  103. PVERSION=96
  104.  
  105. # Choose whether to use a shared version of the PNG library, and if so,
  106. # what its name is.
  107. # See gs.mak and make.txt for more information.
  108.  
  109. SHARE_LIBPNG=0
  110. LIBPNG_NAME=png
  111.  
  112. # Define the directory where the zlib sources are stored.
  113. # See zlib.mak for more information.
  114.  
  115. ZSRCDIR=zlib
  116.  
  117. # Choose whether to use a shared version of the zlib library, and if so,
  118. # what its name is (usually libz, but sometimes libgz).
  119. # See gs.mak and make.txt for more information.
  120.  
  121. SHARE_ZLIB=0
  122. #ZLIB_NAME=gz
  123. ZLIB_NAME=z
  124.  
  125. # Define how to build the library archives.  (These are not used in any
  126. # standard configuration.)
  127.  
  128. AR=ar
  129. ARFLAGS=qc
  130. RANLIB=ranlib
  131.  
  132. # Define the configuration ID.  Read gs.mak carefully before changing this.
  133.  
  134. CONFIG=
  135.  
  136. # ------ Platform-specific options ------ #
  137.  
  138. # Define the name of the linker for the final link step.
  139. # Normally this is the same as the C compiler.
  140.  
  141. CCLD=$(CC)
  142.  
  143. # Define the other compilation flags.  Add at most one of the following:
  144. #    -DBSD4_2 for 4.2bsd systems.
  145. #    -DSYSV for System V or DG/UX.
  146. #     -DSYSV -D__SVR3 for SCO ODT, ISC Unix 2.2 or before,
  147. #       or any System III Unix, or System V release 3-or-older Unix.
  148. #       Also add -Xa if your compiler accepts it.
  149. #    -DSVR4 -DSVR4_0 (not -DSYSV) for System V release 4.0.
  150. #    -DSVR4 (not -DSYSV) for System V release 4.2 (or later) and Solaris 2.
  151. # XCFLAGS can be set from the command line.
  152. XCFLAGS=
  153.  
  154. CFLAGS=-O $(XCFLAGS)
  155.  
  156. # Define platform flags for ld.
  157. # SunOS and some others want -X; Ultrix wants -x.
  158. # SunOS 4.n may need -Bstatic.
  159. # XLDFLAGS can be set from the command line.
  160. XLDFLAGS=
  161.  
  162. LDFLAGS=$(XLDFLAGS)
  163.  
  164. # Define any extra libraries to link into the executable.
  165. # ISC Unix 2.2 wants -linet.
  166. # SCO Unix needs -lsocket if you aren't including the X11 driver.
  167. # SVR4 may need -lnsl.
  168. # (Libraries required by individual drivers are handled automatically.)
  169.  
  170. EXTRALIBS=
  171.  
  172. # Define the include switch(es) for the X11 header files.
  173. # This can be null if handled in some other way (e.g., the files are
  174. # in /usr/include, or the directory is supplied by an environment variable);
  175. # in particular, SCO Xenix, Unix, and ODT just want
  176. #XINCLUDE=
  177. # Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
  178. # not in $(XINCLUDE).
  179.  
  180. XINCLUDE=-I/usr/local/X/include
  181.  
  182. # Define the directory/ies and library names for the X11 library files.
  183. # XLIBDIRS is for ld and should include -L; XLIBDIR is for LD_RUN_PATH
  184. # (dynamic libraries on SVR4) and should not include -L.
  185. # Both can be null if these files are in the default linker search path;
  186. # in particular, SCO Xenix, Unix, and ODT just want
  187. #XLIBDIRS=
  188. # Solaris and other SVR4 systems with dynamic linking probably want
  189. #XLIBDIRS=-L/usr/openwin/lib
  190. #XLIBDIR=/usr/openwin/lib
  191. # X11R6 (on any platform) may need
  192. #XLIBS=Xt SM ICE Xext X11
  193.  
  194. XLIBDIRS=-L/usr/local/X/lib
  195. XLIBDIR=
  196. XLIBS=Xt Xext X11
  197.  
  198. # Define whether this platform has floating point hardware:
  199. #    FPU_TYPE=2 means floating point is faster than fixed point.
  200. # (This is the case on some RISCs with multiple instruction dispatch.)
  201. #    FPU_TYPE=1 means floating point is at worst only slightly slower
  202. # than fixed point.
  203. #    FPU_TYPE=0 means that floating point may be considerably slower.
  204. #    FPU_TYPE=-1 means that floating point is always much slower than
  205. # fixed point.
  206.  
  207. FPU_TYPE=1
  208.  
  209. # ------ Devices and features ------ #
  210.  
  211. # Choose the language feature(s) to include.  See gs.mak for details.
  212.  
  213. FEATURE_DEVS=level2.dev pdf.dev pipe.dev
  214.  
  215. # Choose whether to compile the .ps initialization files into the executable.
  216. # See gs.mak for details.
  217.  
  218. COMPILE_INITS=0
  219.  
  220. # Choose whether to store band lists on files or in memory.
  221. # The choices are 'file' or 'memory'.
  222.  
  223. BAND_LIST_STORAGE=file
  224.  
  225. # Choose which compression method to use when storing band lists in memory.
  226. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  227. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  228.  
  229. BAND_LIST_COMPRESSOR=zlib
  230.  
  231. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  232. # See gs.mak and sfxfd.c for more details.
  233.  
  234. FILE_IMPLEMENTATION=stdio
  235.  
  236. # Choose the device(s) to include.  See devs.mak for details.
  237.  
  238. DEVICE_DEVS=x11.dev x11alpha.dev x11cmyk.dev x11mono.dev
  239. DEVICE_DEVS1=
  240. DEVICE_DEVS2=
  241. DEVICE_DEVS3=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  242. # Sun's cc can't compile gdevcdj.c.
  243. #DEVICE_DEVS4=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  244. DEVICE_DEVS4=
  245. DEVICE_DEVS5=uniprint.dev
  246. DEVICE_DEVS6=bj10e.dev bj200.dev bjc600.dev bjc800.dev
  247. DEVICE_DEVS6=
  248. DEVICE_DEVS7=faxg3.dev faxg32d.dev faxg4.dev
  249. DEVICE_DEVS8=jpeg.dev jpeggray.dev pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev
  250. DEVICE_DEVS9=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  251. DEVICE_DEVS10=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  252. DEVICE_DEVS11=tiff12nc.dev tiff24nc.dev
  253. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  254. DEVICE_DEVS13=pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev
  255. DEVICE_DEVS14=
  256. DEVICE_DEVS15=pdfwrite.dev pswrite.dev epswrite.dev pxlmono.dev pxlcolor.dev
  257.  
  258. # ---------------------------- End of options --------------------------- #
  259.  
  260. # Define the name of the partial makefile that specifies options --
  261. # used in dependencies.
  262.  
  263. MAKEFILE=cc-head.mak
  264.  
  265. # Define the ANSI-to-K&R dependency.
  266.  
  267. # This should be ansi2knr$(XEAUX), or $(ANSI2KNR_XE), but these macros
  268. # haven't been defined yet, and some buggy 'make' programs expand macros in
  269. # definitions at the time of definition rather than at the time of use.
  270. AK=ansi2knr
  271.  
  272. # Define the compilation rules and flags.
  273.  
  274. CCC=$(SHP)ccgs "$(CC) $(CCFLAGS) -c"
  275. # We compile ansi2knr, and only ansi2knr, unmodified.
  276. CCA2K=$(CC)
  277. CCAUX=$(SHP)ccgs "$(CC)"
  278. CCLEAF=$(CCC)
  279.  
  280. # --------------------------- Generic makefile ---------------------------- #
  281.  
  282. # The remainder of the makefile (unixhead.mak, gs.mak, devs.mak, unixtail.mak)
  283. # is generic.  tar_cat concatenates all these together.
  284.